.gr-card {
  display: flex;
  width: 100%;
  text-decoration: none;
  color: #000;
  transition: all .3s ease-in-out;
  padding: 5px;
  margin-bottom: 5px;
  border-radius: 4px;
  background: #fff;
}
.gr-card:hover {
  
}
.gr-card .b .h {
  height: 100px;
  width: 100px;
}
.gr-card .h {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bs-gray-200);
}

.gr-card .b img {
  height: 100%;
  transition: all .3s ease-in-out;
}

.gr-card:hover .b img {
  transform: scale(1.1);
}
.gr-card .c {
  padding: 15px;
}
.gr-card .c .f {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all .2s ease-in-out;
}
.gr-card:hover .c .f {
  color: var(--bs-primary);
}
.gr-card .c .g {
  color: var(--bs-gray-500);
  transition: all .2s ease-in-out;
}
.gr-card:hover .c .g {
  color: var(--bs-gray-600);
}
@media only screen and (min-width: 768px) {
  .gr-card .c .f {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-card {
    
  }
}